[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "servitorconnect"
version = "1.2.0"
description = "A tool to repeat intentions hourly from a file or direct input."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
authors = [{ name = "AnthroHeart (Thomas Sweet)", email = "healing@intentionrepeater.com" }]
license = { text = "GPLv3" }
classifiers = [
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  "Operating System :: OS Independent"
]

[project.urls]
Homepage = "https://github.com/tsweet77/servitorconnect"

[project.scripts]
servitorconnect = "cli:main"

[tool.setuptools]
# Tell setuptools to ship top-level modules (not just packages)
py-modules = ["cli"]
